home *** CD-ROM | disk | FTP | other *** search
- // LicenceDlg.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "SlsDemo.h"
- #include "LicenceDlg.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CLicenceDlg dialog
-
-
- CLicenceDlg::CLicenceDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CLicenceDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CLicenceDlg)
- m_strReferenceCode = _T("");
- m_strLicenceKey = _T("");
- //}}AFX_DATA_INIT
- }
-
-
- void CLicenceDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CLicenceDlg)
- DDX_Text(pDX, IDC_REFERENCE_CODE, m_strReferenceCode);
- DDX_Text(pDX, IDC_LICENCE_KEY, m_strLicenceKey);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CLicenceDlg, CDialog)
- //{{AFX_MSG_MAP(CLicenceDlg)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CLicenceDlg message handlers
-
- void CLicenceDlg::OnOK()
- {
- // TODO: Add extra validation here
-
- CDialog::OnOK();
- }
-